home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Educational / HodgePodge3 / Source / Rules.m < prev    next >
Encoding:
Text File  |  1995-06-12  |  234 b   |  13 lines

  1. // Rules.m -- rule object, to be overridden
  2. //                                                C King Software, 9/92
  3.  
  4. #import "Rules.h"
  5.  
  6. @implementation Rules
  7.  
  8. - (void)restart :(int)cold                    {}
  9. - (void)resize                                {}
  10. - (void)compute :(screen_image *)to_screen    {}
  11.  
  12. @end
  13.